home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / MPW-GM / MPW / Scripts / NewKeyMap < prev    next >
Encoding:
Text File  |  1993-05-07  |  1.8 KB  |  34 lines  |  [TEXT/MPS ]

  1. # This script, when executed, sets the keyboard to a modified group of values that
  2. # some may prefer to the default values. It may be regarded as a start toward
  3. # individual customization of the keyboard. 
  4. # Copyright Apple Computer, Inc. 1992.  All rights reserved.
  5.  
  6. SetKey -r
  7. SetKey escape                            'Undo    "{active}"'
  8. SetKey clear                            DeleteCharRight
  9. SetKey command-delete                   DeleteEndOfLine
  10. SetKey command-escape                   'Undo    "{active}"'
  11. SetKey command-clear                    DeleteStartOfLine
  12. SetKey command-del                      DeleteStartOfLine
  13. SetKey shift-delete                     DeleteCharRight
  14. SetKey shift-escape                     'Undo    "{active}"'
  15. SetKey shift-clear                      DeleteCharLeft
  16. SetKey shift-del                        DeleteCharLeft
  17. SetKey shift-command-delete             DeleteStartOfLine
  18. SetKey shift-command-escape             'Undo    "{active}"'
  19. SetKey shift-command-clear              DeleteEndOfLine
  20. SetKey shift-command-del                DeleteEndOfLine
  21. SetKey option-escape                    'Undo    "{active}"'
  22. SetKey option-clear                     DeleteWordRight
  23. SetKey option-command-escape            'Undo    "{active}"'
  24. SetKey option-command-clear             DeleteStartOfFile
  25. SetKey option-command-del               DeleteStartOfFile
  26. SetKey option-shift-delete              DeleteWordRight
  27. SetKey option-shift-escape              'Undo    "{active}"'
  28. SetKey option-shift-clear               DeleteWordLeft
  29. SetKey option-shift-del                 DeleteWordLeft
  30. SetKey option-shift-command-delete      DeleteStartOfFile
  31. SetKey option-shift-command-escape      'Undo    "{active}"'
  32. SetKey option-shift-command-clear       DeleteEndOfFile
  33. SetKey option-shift-command-del         DeleteEndOfFile
  34.